1/*
2 * Mumble Dark Theme for OSX
3 * https://github.com/mumble-voip/mumble-theme
4 *
5 * Based on MetroMumble Theme by xPoke
6 * https://github.com/xPoke
7 *
8 * Originally forked from Flat Mumble Theme by xPaw (xpaw.ru)
9 *
10 * Licensed under The Do What The Fuck You Want To Public License (WTFPL)
11 */
12/*
13 * YOU SHOULD NOT MODIFY THIS FILE
14 * Edit the files in the "source" folder instead.
15 * See project README
16 *
17 */
18ApplicationPalette {
19  qproperty-window: #2e2e2e;
20  qproperty-windowtext: #eee;
21  qproperty-windowtext_disabled: #484848;
22  qproperty-base: #191919;
23  qproperty-alternatebase: #2d2d2d;
24  qproperty-text: #d8d8d8;
25  qproperty-text_disabled: #484848;
26  qproperty-tooltipbase: #191919;
27  qproperty-tooltiptext: #d8d8d8;
28  qproperty-tooltiptext_disabled: #484848;
29  qproperty-brighttext: #FFF;
30  qproperty-brighttext_disabled: #484848;
31  qproperty-highlight: #298ce1;
32  qproperty-highlightedtext: #FFF;
33  qproperty-highlightedtext_disabled: #484848;
34  qproperty-button: #444;
35  qproperty-buttontext: #d8d8d8;
36  qproperty-buttontext_disabled: #484848;
37  qproperty-link: #39a5dd;
38  qproperty-linkvisited: #39a5dd;
39  qproperty-light: #1c1c1c;
40  qproperty-midlight: transparent;
41  qproperty-mid: #1c1c1c;
42  qproperty-dark: transparent;
43  qproperty-shadow: #1c1c1c;
44}
45
46QObject,
47QObject::separator,
48QObject::handle,
49QObject::tab-bar,
50QObject::tab,
51QObject::section {
52  font-family: -apple-system, ".SF NS Text", "Helvetica Neue", "Lucida Grande";
53  font-size: 13pt;
54  margin: 0;
55  padding: 0;
56  outline: 0;
57  border: 0;
58  selection-background-color: #298ce1;
59  selection-color: #FFF;
60  alternate-background-color: transparent;
61  color: #eee;
62  border-radius: 2px;
63}
64
65QMainWindow,
66QDockWidget {
67  background-color: #2e2e2e;
68}
69
70QDialog,
71QWizard *,
72QCalendarWidget *,
73#qswPages > QObject {
74  background-color: #1D1D1D;
75  color: #d8d8d8;
76}
77
78QObject:disabled,
79QObject::item:disabled {
80  color: #484848;
81}
82
83a {
84  color: #39a5dd;
85  text-decoration: none;
86}
87
88QObject::separator {
89  height: 4px;
90  width: 4px;
91}
92
93QObject::separator:hover {
94  background: #333;
95}
96
97DockTitleBar {
98  font-size: 10pt;
99}
100
101QToolTip,
102QWhatsThis {
103  font-size: 11pt;
104  min-height: 1.3em;
105  border: 1px solid #888;
106  border-radius: 0;
107  background-color: #191919;
108  color: #d8d8d8;
109}
110
111QTextBrowser,
112QTextEdit {
113  background-color: #191919;
114  color: #d8d8d8;
115  border: 1px solid #1c1c1c;
116}
117
118QToolBar {
119  background-color: #2e2e2e;
120  spacing: 0;
121  padding: 2px;
122}
123
124QToolButton {
125  border: 1px solid transparent;
126  border-radius: 2px;
127  padding: 1px;
128  margin: 1px;
129}
130
131QToolButton:on {
132  background-color: #444;
133  border: 1px solid #444;
134}
135
136QToolButton:hover {
137  background-color: #3e4f5e;
138  border: 1px solid #3e4f5e;
139}
140
141QToolButton:pressed {
142  background-color: #484848;
143}
144
145QToolBar::separator {
146  background: #555;
147  height: 1px;
148  margin: 4px;
149  width: 1px;
150}
151
152QToolBar::separator:hover {
153  background: #555;
154  border: 0;
155}
156
157QToolButton#qt_toolbar_ext_button {
158  min-width: 8px;
159  width: 8px;
160  padding: 1px;
161  qproperty-icon: url(skin:controls/toolbar_ext.svg);
162}
163
164QToolBar::handle:horizontal {
165  image: url(skin:controls/handle_horizontal.svg);
166  width: 8px;
167  padding: 4px;
168}
169
170QToolBar::handle:vertical {
171  image: url(skin:controls/handle_vertical.svg);
172  height: 8px;
173  padding: 4px;
174}
175
176QMenuBar::item {
177  background-color: transparent;
178  padding: 4px 12px;
179}
180
181QMenuBar::item:selected {
182  background: #298ce1;
183  color: #FFF;
184}
185
186QMenuBar::item:pressed {
187  background: #1979ca;
188  color: #FFF;
189}
190
191QMenu {
192  background: #2b2b2b;
193  border: 1px solid #1c1c1c;
194  color: #d8d8d8;
195}
196
197QMenu::item {
198  border: 1px solid transparent;
199  color: #d8d8d8;
200  padding: 5px 16px;
201  padding-left: 25px;
202  border-radius: 2px;
203}
204
205QMenu::item:selected {
206  background: #3e4f5e;
207  border: 1px solid #3e4f5e;
208}
209
210QMenu::item:disabled {
211  border: 1px solid transparent;
212  background: transparent;
213}
214
215QMenu::separator {
216  background: #555;
217  height: 1px;
218}
219
220QMenu::indicator {
221  padding-top: 2px;
222  height: 25px;
223  width: 25px;
224}
225
226QPushButton {
227  background-color: #444;
228  border: 1px solid #444;
229  color: #d8d8d8;
230  font-size: 15pt;
231  padding: 3px 20px;
232}
233
234QPushButton:focus {
235  background-color: #3e4f5e;
236}
237
238QPushButton:hover {
239  background-color: #595959;
240  border-color: #555;
241}
242
243QPushButton:hover:focus {
244  background-color: #485d6f;
245  border-color: #485d6f;
246}
247
248QPushButton:focus {
249  border-color: #3e4f5e;
250}
251
252QPushButton:pressed,
253QPushButton:pressed:focus {
254  background-color: #298ce1;
255  border-color: #298ce1;
256  color: #FFF;
257}
258
259QGroupBox,
260#qwMacWarning,
261#qwInlineNotice {
262  background-color: #2d2d2d;
263  border: 1px solid #1c1c1c;
264  color: #d8d8d8;
265  font-size: 16pt;
266  padding: 4px;
267  padding-top: 1em;
268}
269
270QGroupBox::title {
271  background-color: transparent;
272  margin: 6px;
273  margin-left: 8px;
274  margin-right: 8px;
275}
276
277QListView {
278  background-color: #191919;
279  border: 1px solid #1c1c1c;
280}
281
282QListView::item {
283  border-radius: 2px;
284  border: 1px solid transparent;
285  color: #d8d8d8;
286  selection-color: #d8d8d8;
287  padding: 2px 4px;
288}
289
290QListView::item:hover {
291  background-color: #333;
292  border: 1px solid #333;
293}
294
295QListView::item:selected {
296  background-color: #3b3b3b;
297  border: 1px solid #3b3b3b;
298}
299
300QListView::item:selected:active {
301  background-color: #3e4f5e;
302  border: 1px solid #3e4f5e;
303}
304
305QTreeView {
306  background-color: #191919;
307  color: #d8d8d8;
308  selection-background-color: #191919;
309  selection-color: #d8d8d8;
310  border: 1px solid #1c1c1c;
311}
312
313QTreeView::item {
314  min-width: 60px;
315  border: 1px solid transparent;
316  border-left: 0;
317  border-right: 0;
318  color: #d8d8d8;
319  padding: 2px 4px;
320  selection-color: #d8d8d8;
321  border-radius: 0;
322}
323
324QTreeView::item:first,
325QTreeView::item:only-one {
326  border-left: 1px solid transparent;
327  border-top-left-radius: 2px;
328  border-bottom-left-radius: 2px;
329}
330
331QTreeView::item:last,
332QTreeView::item:only-one {
333  border-right: 1px solid transparent;
334  border-top-right-radius: 2px;
335  border-bottom-right-radius: 2px;
336}
337
338QTreeView::item:hover,
339QTreeView::item:focus {
340  background-color: #333;
341  border-color: #333;
342}
343
344QTreeView::item:selected {
345  background-color: #3b3b3b;
346  border: 1px solid #3b3b3b;
347  border-right: 0;
348  border-left: 0;
349}
350
351QTreeView::item:selected:first,
352QTreeView::item:selected:only-one {
353  border-left: 1px solid #3b3b3b;
354}
355
356QTreeView::item:selected:last,
357QTreeView::item:selected:only-one {
358  border-right: 1px solid #3b3b3b;
359}
360
361QTreeView::item:selected:active {
362  background-color: #3e4f5e;
363  border: 1px solid #3e4f5e;
364  border-right: 0;
365  border-left: 0;
366}
367
368QTreeView::item:selected:active:first,
369QTreeView::item:selected:active:only-one {
370  border-left: 1px solid #3e4f5e;
371}
372
373QTreeView::item:selected:active:last,
374QTreeView::item:selected:active:only-one {
375  border-right: 1px solid #3e4f5e;
376}
377
378QTreeView::branch {
379  border-image: none;
380  image: none;
381  margin-left: 3px;
382  margin-top: 1px;
383  padding-left: 3px;
384}
385
386QTreeView::branch:has-children:closed {
387  image: url(skin:controls/branch_closed.svg);
388}
389
390QTreeView::branch:has-children:open {
391  image: url(skin:controls/branch_open.svg);
392}
393
394QHeaderView {
395  border-bottom: 1px solid #1c1c1c;
396  border-radius: 0;
397}
398
399QHeaderView::section {
400  border: 0;
401  background-color: #2d2d2d;
402  color: #d8d8d8;
403  padding: 4px;
404  padding-left: 8px;
405  padding-right: 20px;
406  border-radius: 0;
407}
408
409QHeaderView::down-arrow,
410QHeaderView::up-arrow {
411  margin: 1px;
412  top: 1px;
413  right: 5px;
414  width: 14px;
415}
416
417QHeaderView::down-arrow {
418  image: url(skin:controls/arrow_down.svg);
419}
420
421QHeaderView::up-arrow {
422  image: url(skin:controls/arrow_up.svg);
423}
424
425QTabWidget::pane {
426  background-color: #2d2d2d;
427  border: 1px solid #1c1c1c;
428}
429
430QTabWidget::pane:top {
431  margin-top: -1px;
432  border-radius: 2px;
433  border-top-left-radius: 0;
434}
435
436QTabWidget::pane:bottom {
437  margin-bottom: -1px;
438  border-radius: 2px;
439  border-bottom-left-radius: 0;
440}
441
442QTabWidget::tab-bar {
443  background-color: #1D1D1D;
444}
445
446QTabBar::tab {
447  color: #ccc;
448  background-color: #1e1e1e;
449  padding: 6px 16px;
450  border-radius: 0;
451  border: 1px solid #1c1c1c;
452  border-right: 0;
453}
454
455QTabBar::tab:last,
456QTabBar::tab:only-one {
457  border-right: 1px solid #1c1c1c;
458}
459
460QTabBar::tab:hover {
461  background-color: #3e4f5e;
462}
463
464QTabBar::tab:disabled {
465  color: #484848;
466}
467
468QTabBar::tab:selected {
469  color: #d8d8d8;
470  background-color: #2d2d2d;
471}
472
473QTabBar::tab:top {
474  border-bottom: 0;
475  margin-bottom: 1px;
476}
477
478QTabBar::tab:bottom {
479  border-top: 0;
480  margin-top: 1px;
481}
482
483QTabBar::tab:top:selected {
484  padding-bottom: 7px;
485  margin-bottom: 0;
486}
487
488QTabBar::tab:bottom:selected {
489  padding-top: 7px;
490  margin-top: 0;
491}
492
493QTabBar::tab:top:first,
494QTabBar::tab:top:only-one {
495  border-top-left-radius: 2px;
496}
497
498QTabBar::tab:top:last,
499QTabBar::tab:top:only-one {
500  border-top-right-radius: 2px;
501}
502
503QTabBar::tab:bottom:first,
504QTabBar::tab:bottom:only-one {
505  border-bottom-left-radius: 2px;
506}
507
508QTabBar::tab:bottom:last,
509QTabBar::tab:bottom:only-one {
510  border-bottom-right-radius: 2px;
511}
512
513QScrollBar {
514  border-radius: 0;
515  font-size: 13pt;
516}
517
518QScrollBar:vertical {
519  border-left: 1px solid #1c1c1c;
520  width: 1em;
521}
522
523QScrollBar:horizontal {
524  border-top: 1px solid #1c1c1c;
525  height: 1em;
526}
527
528QScrollBar::handle {
529  margin: -1px;
530  background: #666;
531  border: 1px solid #1c1c1c;
532}
533
534QScrollBar::handle:vertical {
535  min-height: 10px;
536}
537
538QScrollBar::handle:horizontal {
539  min-width: 10px;
540}
541
542QScrollBar::handle:hover {
543  background: #888;
544}
545
546QScrollBar::left-arrow,
547QScrollBar::right-arrow,
548QScrollBar::up-arrow,
549QScrollBar::down-arrow,
550QScrollBar::sub-line,
551QScrollBar::add-line,
552QScrollBar::add-page,
553QScrollBar::sub-page {
554  background: #2e2e2e;
555  height: 0;
556  width: 0;
557  border-radius: 0;
558  border: 0;
559}
560
561QAbstractScrollArea::corner {
562  border-left: 1px solid #1c1c1c;
563  border-top: 1px solid #1c1c1c;
564  height: 0;
565  width: 0;
566  border-radius: 0;
567  border-top: 1px solid #1c1c1c;
568  border-left: 1px solid #1c1c1c;
569  background: #191919;
570}
571
572QLineEdit,
573QComboBox,
574QSpinBox,
575QAbstractSpinBox {
576  color: #d8d8d8;
577  padding: 4px;
578  min-height: 1em;
579}
580
581QComboBox,
582QSpinBox,
583QAbstractSpinBox {
584  border: 1px solid #444;
585  background-color: #444;
586}
587
588QLineEdit,
589QTextEdit,
590QPlainTextEdit,
591QSpinBox,
592QAbstractSpinBox,
593QComboBox:editable {
594  border: 1px solid #2e2e2e;
595  background-color: #191919;
596}
597
598QSpinBox,
599QAbstractSpinBox {
600  min-width: 2.5em;
601  padding-right: 10px;
602}
603
604QPushButton:disabled,
605QLineEdit:disabled,
606QTextEdit:disabled,
607QPlainTextEdit:disabled,
608QListWidget:disabled,
609QTreeWidget:disabled,
610QComboBox:disabled,
611QSpinBox:disabled,
612QAbstractSpinBox:disabled {
613  border: 1px solid transparent;
614  background-color: #282828;
615}
616
617QComboBox::drop-down,
618QAbstractSpinBox::drop-down,
619QSpinBox::drop-down,
620QDateTimeEdit::drop-down {
621  background-color: #191919;
622  border: 0;
623  margin-left: 4px;
624  margin-right: 12px;
625  margin-top: 5px;
626}
627
628QComboBox::down-arrow,
629QDateTimeEdit::down-arrow {
630  margin-top: -2px;
631  image: url(skin:controls/arrow_down.svg);
632  width: 14px;
633}
634
635QComboBox::down-arrow:disabled,
636QDateTimeEdit::down-arrow:disabled {
637  image: url(skin:controls/arrow_down_disabled.svg);
638}
639
640QToolButton[popupMode="1"],
641QToolButton[popupMode="2"],
642QPushButton[popupMode="1"],
643QPushButton[popupMode="2"] {
644  padding-right: 14px;
645}
646
647QToolButton::menu-arrow,
648QToolButton::menu-indicator,
649QPushButton::menu-arrow,
650QPushButton::menu-indicator {
651  image: url(skin:controls/arrow_down.svg);
652  subcontrol-origin: padding;
653  subcontrol-position: center right;
654  top: 2px;
655  right: 2px;
656  width: 14px;
657}
658
659QSpinBox::down-button,
660QAbstractSpinBox::down-button {
661  padding-right: 4px;
662  image: url(skin:controls/arrow_down.svg);
663  width: 14px;
664  padding-bottom: 1px;
665}
666
667QSpinBox::down-button:disabled,
668QAbstractSpinBox::down-button:disabled {
669  image: url(skin:controls/arrow_down_disabled.svg);
670}
671
672QSpinBox::up-button,
673QAbstractSpinBox::up-button {
674  padding-right: 4px;
675  image: url(skin:controls/arrow_up.svg);
676  width: 14px;
677  padding-top: 1px;
678}
679
680QSpinBox::up-button:disabled,
681QAbstractSpinBox::up-button:disabled {
682  image: url(skin:controls/arrow_up_disabled.svg);
683}
684
685QComboBox QAbstractItemView {
686  background-color: #191919;
687  border: 1px solid #1c1c1c;
688  color: #d8d8d8;
689  border-radius: 0;
690}
691
692QLabel,
693QCheckBox,
694QAbstractCheckBox,
695QTreeView::indicator,
696QRadioButton {
697  color: #d8d8d8;
698  background: transparent;
699}
700
701QCheckBox::indicator,
702QTreeView::indicator {
703  background-color: #444;
704  border: 1px solid #444;
705  height: 13px;
706  width: 13px;
707  margin-top: 1px;
708}
709
710QMenu::indicator {
711  width: 12px;
712  left: 6px;
713}
714
715QCheckBox::indicator:checked,
716QMenu::indicator:checked,
717QTreeView::indicator:checked {
718  image: url(skin:controls/checkbox_check_dark.svg);
719}
720
721QCheckBox::indicator:disabled,
722QTreeView::indicator:disabled {
723  border: 1px solid #2d2d2d;
724  background-color: #282828;
725}
726
727QCheckBox::indicator:checked:disabled,
728QTreeView::indicator:checked:disabled {
729  border: 1px solid transparent;
730  image: url(skin:controls/checkbox_check_disabled.svg);
731}
732
733QRadioButton::indicator {
734  background: #444;
735  border: 1px solid #444;
736  border-radius: 7px;
737  height: 12px;
738  width: 12px;
739}
740
741QTreeView::indicator {
742  background: #444;
743}
744
745QRadioButton::indicator:disabled {
746  background-color: #282828;
747  margin: 1px;
748  border: 1px solid transparent;
749}
750
751QRadioButton::indicator:checked {
752  image: url(skin:controls/radio_check_dark.svg);
753}
754
755QRadioButton::indicator:checked:disabled {
756  image: url(skin:controls/radio_check_disabled.svg);
757}
758
759QSlider::groove {
760  background: #393939;
761  border: 1px solid #393939;
762  border-radius: 2px;
763  font-size: 6pt;
764}
765
766QSlider::groove:horizontal {
767  height: 0.8em;
768}
769
770QSlider::groove:vertical {
771  width: 0.8em;
772}
773
774QSlider::groove:disabled,
775QSlider::sub-page:disabled {
776  background: #282828;
777  border: 1px solid transparent;
778  border-radius: 2px;
779}
780
781QSlider::sub-page {
782  background: #486d8d;
783  border: 1px solid #486d8d;
784  border-radius: 2px;
785}
786
787QSlider::handle {
788  background: #777;
789  border: 1px solid #222;
790  border-radius: 3px;
791  font-size: 5pt;
792}
793
794QSlider::handle:horizontal {
795  margin: -5px -1px;
796  width: 4.5em;
797}
798
799QSlider::handle:vertical {
800  margin: -1px -5px;
801  height: 4.5em;
802}
803
804QSlider::handle:focus {
805  background-color: #6d96ba;
806  border-color: #226;
807}
808
809QSlider::handle:hover {
810  background-color: #999;
811}
812
813QSlider::handle:pressed {
814  background-color: #bbb;
815  border-color: #222;
816}
817
818QSlider::handle:disabled {
819  background-color: #282828;
820  border: 1px solid #282828;
821}
822
823QCheckBox::indicator:focus,
824QTreeView::indicator:focus,
825QRadioButton::indicator:focus,
826QComboBox:focus {
827  background-color: #3e4f5e;
828}
829
830QCheckBox::indicator:focus:hover,
831QTreeView::indicator:focus:hover,
832QRadioButton::indicator:focus:hover,
833QComboBox:focus:hover {
834  background-color: #485d6f;
835  border-color: #485d6f;
836}
837
838QCheckBox::indicator:hover,
839QTreeView::indicator:hover,
840QRadioButton::indicator:hover,
841QComboBox:hover {
842  background-color: #595959;
843  border-color: #555;
844}
845
846QLineEdit:focus,
847QSpinBox:focus,
848QAbstractSpinBox:focus,
849QComboBox:editable:focus {
850  background-color: #191919;
851}
852
853QLineEdit:focus:hover,
854QSpinBox:focus:hover,
855QAbstractSpinBox:focus:hover,
856QComboBox:editable:focus:hover {
857  border-color: #485d6f;
858}
859
860QLineEdit:hover,
861QSpinBox:hover,
862QAbstractSpinBox:hover,
863QComboBox:editable:hover {
864  background-color: #191919;
865  border-color: #555;
866}
867
868QCheckBox::indicator:focus,
869QTreeView::indicator:focus,
870QRadioButton::indicator:focus,
871QComboBox:focus,
872QLineEdit:focus,
873QTextEdit:focus,
874QPlainTextEdit:focus,
875QSpinBox:focus,
876QAbstractSpinBox:focus,
877QComboBox:editable:focus {
878  border-color: #3e4f5e;
879}
880
881QFontDialog {
882  min-width: 32em;
883  min-height: 24em;
884}
885
886QColorDialog QColorLuminancePicker {
887  background-color: transparent;
888}
889
890QMessageBox,
891QDialogButtonBox {
892  dialogbuttonbox-buttons-have-icons: 0;
893}
894
895/* Mumble Specifics */
896LogTextBrowser,
897#qdsChat {
898  margin: 0 2px;
899  min-height: 120px;
900  min-width: 40px;
901  border-color: #1c1c1c;
902}
903
904UserView {
905  margin: 0 2px;
906  min-height: 120px;
907  min-width: 40px;
908}
909
910UserView::item {
911  padding: 0;
912  padding-top: -1px;
913}
914
915#qdwChat > QTextEdit {
916  padding: -2px;
917  margin: 0 2px;
918  margin-bottom: 2px;
919  font-size: 13pt;
920}
921
922#qtIconToolbar QComboBox {
923  font-size: 11pt;
924}
925
926.log-time {
927  background-color: transparent;
928  color: #95a5a6;
929  font-size: 12pt;
930}
931
932.log-server {
933  background-color: transparent;
934  color: #F9655D;
935  font-weight: bold;
936}
937
938.log-channel {
939  background-color: transparent;
940  color: #e67e22;
941  font-weight: bold;
942}
943
944.log-privilege {
945  background-color: transparent;
946  color: #c0392b;
947  font-weight: bold;
948}
949
950.log-target {
951  background-color: transparent;
952  color: #27ae60;
953  font-weight: bold;
954}
955
956.log-source {
957  background-color: transparent;
958  color: #27ae60;
959  font-weight: bold;
960}
961
962QListView#qlwIcons {
963  padding: 0;
964  background-color: transparent;
965  border: 0;
966  font-size: 15pt;
967  min-width: 165%;
968  margin-left: 4px;
969  margin-top: 12px;
970}
971
972QListView#qlwIcons::item {
973  margin-bottom: 1px;
974  padding: 5px 7px;
975}
976
977QListView#qlwIcons::item:hover {
978  border-color: #333;
979  background-color: #333;
980}
981
982QListView#qlwIcons::item:selected {
983  background-color: #444;
984  border: 1px solid #444;
985}
986
987QListView#qlwIcons::item:focus {
988  background-color: #3e4f5e;
989  border: 1px solid #3e4f5e;
990}
991
992QSlider {
993  margin-left: 30px;
994  margin-right: 30px;
995}
996
997#qswPages > * > * > QScrollBar {
998  margin: 0;
999}
1000
1001#qswPages > * > QWidget {
1002  margin: 2px;
1003}
1004
1005QListView::item QListWidgetItem,
1006QListView::item QLineEdit,
1007QTreeView::item QComboBox,
1008QTreeView::item QLineEdit {
1009  background: #444;
1010  margin: 0;
1011  padding-top: 0;
1012  padding-bottom: 0;
1013  padding-left: 4px;
1014  padding-right: 4px;
1015  font-size: 12pt;
1016}
1017
1018QListView::item QListWidgetItem:hover,
1019QListView::item QLineEdit:hover,
1020QTreeView::item QComboBox:hover,
1021QTreeView::item QLineEdit:hover {
1022  background: #444;
1023}
1024
1025AboutDialog > QTextBrowser,
1026AboutDialog QTextEdit {
1027  border: 0;
1028}
1029
1030#qtbToolBar {
1031  border: 1px solid transparent;
1032  background: transparent;
1033}
1034
1035#BanEditor {
1036  min-width: 600px;
1037}
1038
1039#GlobalShortcutTarget {
1040  min-height: 600px;
1041}
1042
1043ViewCert {
1044  min-height: 600px;
1045}
1046
1047TalkingUI {
1048  background-color: #191919;
1049}
1050
1051TalkingUI > * {
1052  background-color: #191919;
1053}
1054
1055TalkingUI [selected=false] {
1056  background-color: #191919;
1057}
1058
1059TalkingUI [selected=false]:hover {
1060  background-color: #333;
1061}
1062
1063TalkingUI [selected=true] {
1064  background-color: #3e4f5e;
1065  border: 1px solid #3e4f5e;
1066}
1067
1068QToolBar {
1069  background-color: transparent;
1070  border: 0px;
1071  spacing: 0;
1072}
1073
1074QToolButton:hover {
1075  background-color: transparent;
1076}
1077
1078QToolButton:pressed {
1079  background-color: transparent;
1080}
1081
1082QToolButton:on {
1083  background-color: transparent;
1084}
1085
1086QToolButton:on:pressed {
1087  background-color: transparent;
1088}
1089
1090